home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / xemacs / xemacs-1.006 / xemacs-1 / lib / xemacs-19.13 / info / w3.info-4 < prev    next >
Encoding:
GNU Info File  |  1995-09-01  |  33.0 KB  |  707 lines

  1. This is Info file ../info/w3.info, produced by Makeinfo-1.63 from the
  2. input file w3.texi.
  3.  
  4.    This file documents the Emacs-w3 World Wide Web browser.
  5.  
  6.    Copyright (C) 1993, 1994, 1995 William M. Perry
  7.  
  8.    Permission is granted to make and distribute verbatim copies of this
  9. manual provided the copyright notice and this permission notice are
  10. preserved on all copies.
  11.  
  12. 
  13. File: w3.info,  Node: Data Structures,  Next: Miscellaneous Functions,  Prev: Global Variables,  Up: Programming Interface
  14.  
  15. Data Structures
  16. ===============
  17.  
  18.    Form objects are used to store information about a FORM data entry
  19. area.
  20.   1. `'w3form'
  21.  
  22.   2. A cons pair of (METHOD . URL), where METHOD specifies what method
  23.      to use to retrieve the form when it is submitted (e.g., `GET') and
  24.      URL is a fully specified URL pointing at where to submit the FORM
  25.      data to.
  26.  
  27.   3. The type of input area this is.  (e.g., `CHECKBOX' or `RADIO')
  28.  
  29.   4. The name of the input tag.  This is used when sending the form to
  30.      the server, so that the server can tell what data is what.
  31.  
  32.   5. The default value of the input area.  Gotten from the INPUT tag at
  33.      creation time.
  34.  
  35.   6. The current value of the input area.
  36.  
  37.   7. Whether the item is checked or not.  Only used for RADIO or
  38.      CHECKBOX items.
  39.  
  40.   8. The size (in characters) of the input area.  Not used for CHECKBOX,
  41.      RADIO, or TEXTAREA input areas.
  42.  
  43.   9. The maximum length of the input.  Only used for TEXT or PASSWORD
  44.      input areas.
  45.  
  46.  10. The form that this input area belongs to.  Each form in the same
  47.      buffer has a unique identifier assigned when the document is
  48.      parsed.  It is used when the form is submitted to get only the
  49.      data for the correct form.
  50.  
  51.  11. A list of strings that represent the choices for this input area.
  52.      Only used for SELECT tags.
  53.  
  54.  12. A string or `nil', specifying the ID attribute on this input tag.
  55.  
  56.    A new development in the World Wide Web is the concept of collapsible
  57. areas of text.  If a zone controls one of these regions, it is marked
  58. with the w3expandlist property.  The format of this structure is:
  59.  
  60.   1. `'w3expandlist'
  61.  
  62.   2. A marker representing the start of the hidden text as a buffer
  63.      position.
  64.  
  65.   3. A marker representing the end of the hidden text as a buffer
  66.      position.
  67.  
  68.    A zone with the w3graphic property is a link to an inlined image's
  69. source file.
  70.   1. `'w3graphic'
  71.  
  72.   2. The full URL of the inlined image.  This is only ever returned if
  73.      the inlined image is the only extent under point, or
  74.      `w3-follow-inlined-image' is invoked.
  75.  
  76.    A zone with the w3 property is a full-fledged hypertext link to
  77. another document.
  78.   1. `'w3'
  79.  
  80.   2. The ID attribute of this link.  Used for resolving references to
  81.      specific points within a document (e.g., `file.html#sectionA'.
  82.  
  83.   3. The HREF attribute of this link.  This is a fully specified URL
  84.      pointing at a network resource.  All relative directory references
  85.      should have been removed before being stored in this structure.
  86.  
  87.   4. The text between the <A> and </A> tags.  This is used to build
  88.      menus or to get the text of a link without doing a
  89.      buffer-substring.
  90.  
  91.   5. The URN attribute of this link.  Currently not used for anything,
  92.      waiting for the URN specification to be hammered out.
  93.  
  94.   6. The REL attribute of this link.  Specifies the links relevance to
  95.      the current document.
  96.  
  97.   7. The REV attribute of this link.  Specifies the current documents
  98.      relevance to the link.
  99.  
  100.   8. The METHODS attribute, which tells what methods can be used on this
  101.      link.  (e.g., `GET, HEAD, PUT'.
  102.  
  103. 
  104. File: w3.info,  Node: Miscellaneous Functions,  Next: MIME functions,  Prev: Data Structures,  Up: Programming Interface
  105.  
  106. Miscellaneous Functions
  107. =======================
  108.  
  109.    I have done quite a bit of work trying to make a clean interface to
  110. the internals of Emacs-w3.  Here is a list of functions that you can
  111. use to take advantage of the World Wide Web.
  112.  
  113. `url-clear-tmp-buffer'
  114.      Sets the current buffer to be `url-working-buffer', creating it if
  115.      necessary, and erase it.  This should usually be called before
  116.      retrieving URLs.
  117.  
  118. `w3-convert-html-to-latex'
  119.      Takes a buffer of HTML markup (which should be in
  120.      `w3-working-buffer'), and convert it into LaTeX.  This is an
  121.      adaptation of the simple sed scripts from Cern.  Does as good a
  122.      job as the html2latex program, and I usually prefer its formatting
  123.      over html2latex's.
  124.  
  125. `w3-fetch'
  126.      This function takes a URL as its only argument. It then attempts to
  127.      retrieve the URL.  For example: `(w3-fetch
  128.      "http://cs.indiana.edu/")' would retrieve the Indiana University
  129.      CS home page and parse it as HTML.
  130.  
  131. `w3-fix-entities-in-string'
  132.      This function takes a string, and removes all HTML[+] entity
  133.      references from it, replacing them with the correct character(s).
  134.      It consults the variable `w3-html-entities' for the entity names
  135.      and translations.  For example, `(w3-fix-entities-in-string
  136.      ">testing<&")' would return `">testing<&"'.
  137.  
  138. `url-generate-new-buffer-name'
  139.      This function takes a string, and returns the first unique buffer
  140.      name using that string as a base.  For example
  141.      `(url-generate-new-buffer-name "new-buff")' would return
  142.      `"new-buff<1>"' if buffer `new-buff' already existed.
  143.  
  144. `url-generate-unique-filename'
  145.      This functions returns a string that represents a unique filename
  146.      in the /tmp directory.  For example,
  147.      `(url-generate-unique-filename)' would return
  148.      `"/tmp/url-tmp129440"'.  The filename is arrived at by using a
  149.      unique prefix (url-tmp), the uid of the current user (12944 in my
  150.      case), and a number that is incremented if a file already exists.
  151.  
  152. `url-buffer-visiting (url)'
  153.      Return the name of a buffer (if any) that is visiting URL.
  154.  
  155. `url-create-mime-request (fname ref-url)'
  156.      Create a MIME request for the file fname.  The Referer: field of
  157.      the HTTP/1.0 request is set to the value of ref-url if necessary.
  158.      Returns a string that can be sent to an HTTP server.  The request
  159.      uses several variables that control how the request looks.
  160.  
  161.      If the value of `url-request-extra-headers' is non-`nil', then it
  162.      is used as extra MIME headers when an HTTP/1.0 request is created.
  163.  
  164. `url-get-url-at-point'
  165.      This function returns the url at a point specified by an optional
  166.      argument.  If no argument is given to the function (point) is used.
  167.      Tries to find the url closest to that point, but does not change
  168.      the users position in the buffer.  Has a preference for looking
  169.      backward when not directly on a URL.
  170.  
  171. `url-hexify-string'
  172.      This function takes a string and replaces any characters that are
  173.      not acceptable in a URL with the "escaped" encoding that is
  174.      standard for URLs (replaces the character with a % followed by the
  175.      hexadecimal representation of the ASCII value of the character).
  176.      For example, `(url-hexify-string "this is a test")' would return
  177.      `"this%20is%20a%20test"'.
  178.  
  179. `url-open-stream'
  180.      This function takes the same parameters as `open-network-stream',
  181.      and functions similarly.  It takes a process name, a buffer name,
  182.      a host name, and a port number or server name.  It attempts to
  183.      open a network connection to the remote host on the specified
  184.      port/service name, with output going to the buffer.  It returns
  185.      the process object that is the network connection.
  186.  
  187. `url-retrieve'
  188.      This function takes 3 arguments, a URL, a method type, and a data
  189.      block.  It then attempts to retrieve the URL using the specified
  190.      method, using data (if any) as the body of the MIME request.  For
  191.      example: `(url-retrieve "http://cs.indiana.edu/")' would retrieve
  192.      the Computer Science home page from Indiana University.  This
  193.      function does no parsing of the retrieved page, and leaves you in
  194.      the buffer containing the document you requested.  Any HTTP/1.0
  195.      redirection/authorization is done before this function exits.
  196.  
  197. `url-unhex-string'
  198.      This is the opposite of `w3-hexify-string'.  It removes any %XXX
  199.      encoded characters in a string.  For example `(url-unhex-string
  200.      "this%20is%20a%20test")' would return `"this is a test"'.
  201.  
  202. `w3-view-this-url'
  203.      This function returns the URL of the zone under point (if no zone
  204.      is under point, then it returns `nil').  If the optional argument
  205.      is `nil', then the URL is also displayed in the minibuffer.
  206.  
  207. `url-view-url'
  208.      This function returns the URL of current document.  If the optional
  209.      argument is `nil', then the URL is also displayed in the
  210.      minibuffer.
  211.  
  212. 
  213. File: w3.info,  Node: MIME functions,  Next: Concept Index,  Prev: Miscellaneous Functions,  Up: Programming Interface
  214.  
  215. MIME Functions
  216. ==============
  217.  
  218. `mm-compose-type(TYPE)'
  219.      Compose a body section of MIME-type TYPE.  This uses the compose
  220.      field of a mailcap entry to generate the data, and returns a
  221.      string that contains the data, with a correct content-type header.
  222.  
  223. `mm-extension-to-mime(EXTN)'
  224.      Return the MIME content-type of the file extension EXTN
  225.  
  226. `mm-mime-info(ST ND REQUEST)'
  227.      Get the mime viewer command for a specific MIME type.  If ST is a
  228.      number, then the MIME type is the `buffer-substring' between ST
  229.      and ND, otherwise ST should be a string specifying the MIME type
  230.      and associated data.  Returns `nil' if the specified type is not
  231.      found.
  232.  
  233.      Expects a complete content-type header line as its argument.  This
  234.      can be simple like text/html, or complex like text/plain;
  235.      charset=blah; foo=bar
  236.  
  237.      Third argument REQUEST specifies what information to return.  If
  238.      it is `nil' or the empty string, the viewer (second field of the
  239.      mailcap entry) is returned.  If it is a string, then the mailcap
  240.      field corresponding to that string is returned (print,
  241.      description, whatever).  If a number, then all the information for
  242.      this specific viewer is returned.
  243.  
  244. `mm-parse-mailcap(FILE)'
  245.      Parse the mailcap file specified by FILE.
  246.  
  247. `mm-parse-mailcaps(PATH)'
  248.      Parse the default mailcap files.  Optional argument PATH specifies
  249.      a UNIX-style path of where to find the mailcap files.  This
  250.      function must be run before the rest of the mm-* functions.
  251.  
  252. `mm-parse-mimetype-file(FILE)'
  253.      Parse out a mime-types file specified by FILE.
  254.  
  255. `mm-parse-mimetypes(PATH)'
  256.      Parse the default mimetypes files.  Optional argument PATH
  257.      specifies a UNIX-style path of where to find the mimetypes files.
  258.  
  259. 
  260. File: w3.info,  Node: Concept Index,  Next: Key Index,  Prev: MIME functions,  Up: Top
  261.  
  262. Concept Index
  263. *************
  264.  
  265. * Menu:
  266.  
  267. * 16-Bit Windows:                       16-Bit Windows.
  268. * 32-Bit Windows:                       32-Bit Windows.
  269. * <style>:                              Style Sheets.
  270. * Alternate caching method:             Disk Caching.
  271. * Amiga:                                Amiga.
  272. * Annotations:                          Annotations.
  273. * ASK blocks:                           General Formatting.
  274. * Authentication, Basic:                Basic.
  275. * Authentication, Digest:               Digest.
  276. * Authentication, PEM:                  PGP/PEM.
  277. * Authentication, PGP:                  PGP/PEM.
  278. * AXP-VMS:                              VMS.
  279. * Bad HTML:                             Debugging HTML.
  280. * Broken SUN libc:                      Firewalls.
  281. * Browsing with no network connection:  Disk Caching.
  282. * Cache cleaning:                       Disk Caching.
  283. * Cache only mode:                      Disk Caching.
  284. * Caching:                              Disk Caching.
  285. * Caching options:                      Disk Caching.
  286. * Can't resolve hostnames:              Firewalls.
  287. * Chicago:                              32-Bit Windows.
  288. * Cleaning the cache:                   Disk Caching.
  289. * Clearing the cache:                   Disk Caching.
  290. * Colors:                               Controlling Formatting.
  291. * Commodore:                            Amiga.
  292. * Completion of URLs:                   Global History.
  293. * Connections hanging with lemacs & solaris: Firewalls.
  294. * Creating an HTTP request:             Miscellaneous Functions.
  295. * Creating w3-emacs19-hack-XXX functions: Smart terminals.
  296. * Customizing formatting:               Controlling Formatting.
  297. * Debugging:                            Debugging HTML.
  298. * Delaying inlined animations:          Inlined images.
  299. * Delaying inlined images:              Inlined images.
  300. * Depth-first search:                   Searching.
  301. * Digital VMS:                          VMS.
  302. * Disk Cache:                           Disk Caching.
  303. * DOS:                                  MS-DOS.
  304. * Downloading multiple files:           General Formatting.
  305. * DSSSL:                                Style Sheets.
  306. * DSSSL-lite:                           Style Sheets.
  307. * Easter Eggs:                          Markup Languages Supported.
  308. * Emacs 19.22 on terminals:             Smart terminals.
  309. * Encryption:                           PGP/PEM.
  310. * Experimental style sheet mechanism:   Style Sheets.
  311. * Export Restrictions:                  SSL.
  312. * Exportability:                        SSL.
  313. * Faulty hostname resolvers:            Firewalls.
  314. * Firewalls:                            Firewalls.
  315. * Fluff:                                Markup Languages Supported.
  316. * Fonts:                                Controlling Formatting.
  317. * Formatting control:                   Style Sheets.
  318. * Forms based searching:                Basic Setup.
  319. * FTP'ing multiple files:               General Formatting.
  320. * Gag Puke Retch:                       SSL.
  321. * Gates Bill:                           Markup Languages Supported.
  322. * Gateways:                             Firewalls.
  323. * GNUS:                                 Interfacing to Mail/News.
  324. * Gopher and MIME:                      Mapping gopher types to MIME types.
  325. * Gopher types:                         Mapping gopher types to MIME types.
  326. * Gopher+ <1>:                          General Formatting.
  327. * Gopher+ <1>:                          Basic Setup.
  328. * Gopher+:                              Gopher Plus Support.
  329. * Group Annotations:                    Group Annotations.
  330. * Hair-pulling gateway-headaches:       Firewalls.
  331. * Highlighting on new terminals:        Smart terminals.
  332. * Highlighting on terminals:            Smart terminals.
  333. * History Lists:                        Session History.
  334. * Hooks:                                Hooks.
  335. * Host-based gateways:                  Firewalls.
  336. * HTML 3.0:                             Markup Languages Supported.
  337. * HTTP/1.0 Authentication <1>:          PGP/PEM.
  338. * HTTP/1.0 Authentication <1>:          Digest.
  339. * HTTP/1.0 Authentication <1>:          SSL.
  340. * HTTP/1.0 Authentication:              Basic.
  341. * Images:                               Inlined images.
  342. * Indentation:                          General Formatting.
  343. * Inlined animations:                   Inlined images.
  344. * Inlined images:                       Inlined images.
  345. * Inlined MPEGs:                        Inlined images.
  346. * Interfacing to Mail/News:             Interfacing to Mail/News.
  347. * Internals of Emacs-w3:                Programming Interface.
  348. * Invalid HTML:                         Debugging HTML.
  349. * ISINDEX handling:                     Basic Setup.
  350. * ITAR must die:                        PGP/PEM.
  351. * Layout control:                       Style Sheets.
  352. * Limiting the size of the cache:       Disk Caching.
  353. * Loading delayed images:               Inlined images.
  354. * Loading delayed movies:               Inlined images.
  355. * Look and Feel:                        Style Sheets.
  356. * Lucid Emacs & Solaris network problems: Firewalls.
  357. * Macintosh:                            Macintosh.
  358. * Macintrash:                           Macintosh.
  359. * Mailcrypt:                            PGP/PEM.
  360. * Microsloth <1>:                       32-Bit Windows.
  361. * Microsloth <1>:                       16-Bit Windows.
  362. * Microsloth:                           MS-DOS.
  363. * MIME and Gopher:                      Mapping gopher types to MIME types.
  364. * mime-types file:                      Adding MIME types based on file extensions.
  365. * Movies:                               Inlined images.
  366. * MPEGs:                                Inlined images.
  367. * MS-DOG:                               MS-DOS.
  368. * MS-DOS:                               MS-DOS.
  369. * Netless browsing:                     Disk Caching.
  370. * Netpbm:                               Inlined images.
  371. * Network Protocols:                    Supported Protocols.
  372. * Newsgroups:                           More Help.
  373. * NeXTstep resources:                   Graphics workstations.
  374. * Non-Unix Operating Systems:           Non-Unix Operating Systems.
  375. * NSA freaks:                           PGP/PEM.
  376. * OS/2:                                 OS/2.
  377. * Paranoia:                             Security.
  378. * Pbmplus:                              Inlined images.
  379. * Persistent Cache:                     Disk Caching.
  380. * Personal Annotations:                 Personal Annotations.
  381. * PGP:                                  PGP/PEM.
  382. * Pomp & Circumstance:                  Markup Languages Supported.
  383. * Pretty Good Privacy:                  PGP/PEM.
  384. * Protocols Supported:                  Supported Protocols.
  385. * Public Key Cryptography:              PGP/PEM.
  386. * Recursive searching:                  Searching.
  387. * Relevant Newsgroups:                  More Help.
  388. * Relying on cache:                     Disk Caching.
  389. * Retrieving Emacs-w3:                  Setting Up.
  390. * RIPEM:                                PGP/PEM.
  391. * RMAIL:                                Interfacing to Mail/News.
  392. * Searching more than one node:         Searching.
  393. * Searching with forms:                 Basic Setup.
  394. * Secure Sockets Layer:                 SSL.
  395. * Security <1>:                         Security.
  396. * Security:                             PGP/PEM.
  397. * Security, Basic:                      Basic.
  398. * Security, Digest <1>:                 Digest.
  399. * Security, Digest <1>:                 SSL.
  400. * Security, Digest:                     PGP/PEM.
  401. * Setting Up Emacs-w3:                  Setting Up.
  402. * Solaris networking problems:          Firewalls.
  403. * Specifying Fonts:                     Controlling Formatting.
  404. * SSL:                                  SSL.
  405. * Standalone mode:                      Disk Caching.
  406. * Stupid export restrictions:           PGP/PEM.
  407. * Style sheets:                         Style Sheets.
  408. * Support:                              More Help.
  409. * Support your local crypto-anarchist:  PGP/PEM.
  410. * Supported Protocols:                  Supported Protocols.
  411. * System 7:                             Macintosh.
  412. * TERM:                                 Firewalls.
  413. * Text highlighting on terminals:       Smart terminals.
  414. * Turning on caching:                   Disk Caching.
  415. * Usefulness of global history:         Global History.
  416. * Using Emacs-w3 from your own programs: Programming Interface.
  417. * Using Emacs-w3 with GNUS:             Interfacing to Mail/News.
  418. * Using Emacs-w3 with RMAIL:            Interfacing to Mail/News.
  419. * Using Emacs-w3 with VM:               Interfacing to Mail/News.
  420. * VAX-VMS:                              VMS.
  421. * VM:                                   Interfacing to Mail/News.
  422. * VMS:                                  VMS.
  423. * VTx00 terminals:                      Smart terminals.
  424. * Warp:                                 OS/2.
  425. * Windows '95:                          32-Bit Windows.
  426. * Windows (16-Bit):                     16-Bit Windows.
  427. * Windows (32-Bit):                     32-Bit Windows.
  428. * Windows For Workgroups:               16-Bit Windows.
  429. * World Wide Web:                       Introduction.
  430. * Xresources:                           Graphics workstations.
  431. * Yogsothoth:                           Markup Languages Supported.
  432.  
  433. 
  434. File: w3.info,  Node: Key Index,  Next: Command Index,  Prev: Concept Index,  Up: Top
  435.  
  436. Key Index
  437. *********
  438.  
  439. * Menu:
  440.  
  441. * <:                                    Movement.
  442. * >:                                    Movement.
  443. * a:                                    Hotlist Handling.
  444. * b:                                    Movement.
  445. * B:                                    Action.
  446. * button2:                              Action.
  447. * C-button2:                            Action.
  448. * C-c C-b:                              Action.
  449. * C-k:                                  Information.
  450. * C-o:                                  Action.
  451. * d:                                    Hotlist Handling.
  452. * DEL:                                  Movement.
  453. * F:                                    Action.
  454. * f:                                    Movement.
  455. * g:                                    Action.
  456. * H <1>:                                Movement.
  457. * H:                                    Hotlist Handling.
  458. * I:                                    Information.
  459. * K:                                    Information.
  460. * l:                                    Action.
  461. * m <1>:                                Action.
  462. * m:                                    Movement.
  463. * M-M:                                  Miscellaneous.
  464. * M-return:                             Action.
  465. * M-s:                                  Action.
  466. * M-tab:                                Miscellaneous.
  467. * M-x w3-hotlist-refresh:               Hotlist Handling.
  468. * M-x w3-insert-formatted-url:          Miscellaneous.
  469. * n:                                    Movement.
  470. * o:                                    Action.
  471. * P:                                    Action.
  472. * p:                                    Miscellaneous.
  473. * Q:                                    Action.
  474. * r:                                    Action.
  475. * return:                               Action.
  476. * S:                                    Information.
  477. * Shift-TAB:                            Movement.
  478. * SPC:                                  Movement.
  479. * TAB:                                  Movement.
  480. * U:                                    Miscellaneous.
  481. * v:                                    Information.
  482.  
  483. 
  484. File: w3.info,  Node: Command Index,  Next: Variable Index,  Prev: Key Index,  Up: Top
  485.  
  486. Command Index
  487. *************
  488.  
  489. * Menu:
  490.  
  491. * lpr-buffer:                           Miscellaneous.
  492. * mm-parse-mimetypes:                   Adding MIME types based on file extensions.
  493. * scroll-down:                          Movement.
  494. * scroll-up:                            Movement.
  495. * system-name:                          Basic Setup.
  496. * url-buffer-visiting:                  Miscellaneous Functions.
  497. * url-clear-tmp-buffer:                 Miscellaneous Functions.
  498. * url-create-mime-request:              Miscellaneous Functions.
  499. * url-generate-new-buffer-name:         Miscellaneous Functions.
  500. * url-generate-unique-filename:         Miscellaneous Functions.
  501. * url-get-url-at-point:                 Miscellaneous Functions.
  502. * url-hexify-string:                    Miscellaneous Functions.
  503. * url-open-stream:                      Miscellaneous Functions.
  504. * url-retrieve:                         Miscellaneous Functions.
  505. * url-unhex-string:                     Miscellaneous Functions.
  506. * url-view-url <1>:                     Information.
  507. * url-view-url:                         Miscellaneous Functions.
  508. * user-real-login-name:                 Basic Setup.
  509. * w3-add-personal-annotation:           Personal Annotations.
  510. * w3-add-zone:                          Generalized ZONES.
  511. * w3-all-zones:                         Generalized ZONES.
  512. * w3-back-link:                         Movement.
  513. * w3-backward-in-history <1>:           Session History.
  514. * w3-backward-in-history:               Action.
  515. * w3-complete-link <1>:                 Action.
  516. * w3-complete-link:                     Movement.
  517. * w3-convert-html-to-latex:             Miscellaneous Functions.
  518. * w3-delete-personal-annotation:        Personal Annotations.
  519. * w3-delete-zone:                       Generalized ZONES.
  520. * w3-document-information:              Information.
  521. * w3-document-information-this-url:     Information.
  522. * w3-emacs19-hack-TERMINAL:             Smart terminals.
  523. * w3-emacs19-unhack-faces:              Smart terminals.
  524. * w3-end-of-document:                   Movement.
  525. * w3-fetch <1>:                         Action.
  526. * w3-fetch <1>:                         Session History.
  527. * w3-fetch:                             Miscellaneous Functions.
  528. * w3-fix-entities-in-string:            Miscellaneous Functions.
  529. * w3-follow-inlined-image <1>:          Data Structures.
  530. * w3-follow-inlined-image:              Action.
  531. * w3-follow-link:                       Action.
  532. * w3-follow-mouse:                      Action.
  533. * w3-forward-in-history <1>:            Session History.
  534. * w3-forward-in-history:                Action.
  535. * w3-forward-link:                      Movement.
  536. * w3-goto-last-buffer:                  Action.
  537. * w3-hide-zone:                         Generalized ZONES.
  538. * w3-hotlist-add-document:              Hotlist Handling.
  539. * w3-hotlist-delete:                    Hotlist Handling.
  540. * w3-hotlist-refresh:                   Hotlist Handling.
  541. * w3-hotlist-rename-entry:              Hotlist Handling.
  542. * w3-import-netscape-bookmarks:         Hotlist Handling.
  543. * w3-insert-formatted-url:              Miscellaneous.
  544. * w3-insert-this-url:                   Miscellaneous.
  545. * w3-leave-buffer:                      Action.
  546. * w3-load-delayed-images:               Inlined images.
  547. * w3-load-delayed-mpegs:                Inlined images.
  548. * w3-mail-current-document:             Miscellaneous.
  549. * w3-mail-document-under-point:         Miscellaneous.
  550. * w3-open-local:                        Action.
  551. * w3-print-this-url <1>:                Miscellaneous.
  552. * w3-print-this-url:                    Action.
  553. * w3-print-url-under-point <1>:         Miscellaneous.
  554. * w3-print-url-under-point:             Action.
  555. * w3-quit:                              Action.
  556. * w3-reload-document:                   Action.
  557. * w3-save-this-url:                     Information.
  558. * w3-save-url:                          Information.
  559. * w3-search:                            Action.
  560. * w3-show-history:                      Session History.
  561. * w3-show-history-list:                 Action.
  562. * w3-show-hotlist <1>:                  Movement.
  563. * w3-show-hotlist:                      Hotlist Handling.
  564. * w3-source-document:                   Information.
  565. * w3-source-document-at-point:          Information.
  566. * w3-start-of-document:                 Movement.
  567. * w3-unhide-zone:                       Generalized ZONES.
  568. * w3-upcase-region:                     Character based terminals.
  569. * w3-use-hotlist <1>:                   Hotlist Handling.
  570. * w3-use-hotlist:                       Movement.
  571. * w3-use-links:                         Miscellaneous.
  572. * w3-view-this-url <1>:                 Information.
  573. * w3-view-this-url:                     Miscellaneous Functions.
  574. * w3-zone-at:                           Generalized ZONES.
  575. * w3-zone-data:                         Generalized ZONES.
  576. * w3-zone-end:                          Generalized ZONES.
  577. * w3-zone-eq:                           Generalized ZONES.
  578. * w3-zone-hidden-p:                     Generalized ZONES.
  579. * w3-zone-start:                        Generalized ZONES.
  580. * window-width:                         Basic Setup.
  581.  
  582. 
  583. File: w3.info,  Node: Variable Index,  Prev: Command Index,  Up: Top
  584.  
  585. Variable Index
  586. **************
  587.  
  588. * Menu:
  589.  
  590. * fill-column:                          General Formatting.
  591. * lpr-command:                          Miscellaneous.
  592. * lpr-switches:                         Miscellaneous.
  593. * mm-content-transfer-encodings:        Other Variables.
  594. * mm-mime-data:                         Specifying Viewers.
  595. * mm-mime-extensions:                   Adding MIME types based on file extensions.
  596. * ssl-program-name:                     SSL.
  597. * url-automatic-caching:                Disk Caching.
  598. * url-bad-port-list:                    Basic Setup.
  599. * url-be-asynchronous:                  Basic Setup.
  600. * url-confirmation-func:                Basic Setup.
  601. * url-current-file:                     Global Variables.
  602. * url-current-mime-headers:             Global Variables.
  603. * url-current-port:                     Global Variables.
  604. * url-current-server <1>:               Global Variables.
  605. * url-current-server:                   Miscellaneous Functions.
  606. * url-current-type:                     Global Variables.
  607. * url-forms-based-ftp:                  General Formatting.
  608. * url-gateway-connect-program:          Firewalls.
  609. * url-gateway-handholding-login-regexp: Firewalls.
  610. * url-gateway-handholding-password-regexp: Firewalls.
  611. * url-gateway-host:                     Firewalls.
  612. * url-gateway-host-password:            Firewalls.
  613. * url-gateway-host-program:             Firewalls.
  614. * url-gateway-host-program-ready-regexp: Firewalls.
  615. * url-gateway-host-prompt-pattern:      Firewalls.
  616. * url-gateway-host-username:            Firewalls.
  617. * url-gateway-local-host-regexp:        Firewalls.
  618. * url-gateway-method:                   Firewalls.
  619. * url-gateway-program-interactive:      Firewalls.
  620. * url-gateway-telnet-program:           Firewalls.
  621. * url-gateway-telnet-ready-regexp:      Firewalls.
  622. * url-global-history-file <1>:          Basic Setup.
  623. * url-global-history-file:              Global History.
  624. * url-gopher-to-mime:                   Mapping gopher types to MIME types.
  625. * url-keep-history <1>:                 Global History.
  626. * url-keep-history:                     Session History.
  627. * url-mime-accept-string:               Miscellaneous Functions.
  628. * url-passwd-entry-func:                Other Variables.
  629. * url-personal-mail-address:            Basic Setup.
  630. * url-pgp/pem-entity:                   Basic Setup.
  631. * url-request-data:                     Miscellaneous Functions.
  632. * url-request-extra-headers:            Miscellaneous Functions.
  633. * url-request-method:                   Miscellaneous Functions.
  634. * url-show-status:                      Other Variables.
  635. * url-standalone-mode:                  Disk Caching.
  636. * url-uncompressor-alist:               Other Variables.
  637. * url-use-hypertext-dired <1>:          Action.
  638. * url-use-hypertext-dired:              General Formatting.
  639. * url-use-hypertext-gopher:             Basic Setup.
  640. * url-wais-gateway-port <1>:            Native WAIS Support.
  641. * url-wais-gateway-port:                Basic Setup.
  642. * url-wais-gateway-server <1>:          Native WAIS Support.
  643. * url-wais-gateway-server:              Basic Setup.
  644. * url-waisq-prog <1>:                   Native WAIS Support.
  645. * url-waisq-prog:                       Other Variables.
  646. * url-working-buffer:                   Miscellaneous Functions.
  647. * url-xterm-command:                    Basic Setup.
  648. * w3-allow-searching-of:                Searching.
  649. * w3-annotation-mode:                   Personal Annotations.
  650. * w3-color-filter:                      Inlined images.
  651. * w3-color-max-blue:                    Inlined images.
  652. * w3-color-max-green:                   Inlined images.
  653. * w3-color-max-red:                     Inlined images.
  654. * w3-color-use-reducing:                Inlined images.
  655. * w3-current-last-buffer:               Global Variables.
  656. * w3-debug-buffer:                      Debugging HTML.
  657. * w3-debug-html:                        Debugging HTML.
  658. * w3-default-action:                    Basic Setup.
  659. * w3-default-homepage:                  Basic Setup.
  660. * w3-delay-image-loads <1>:             Basic Setup.
  661. * w3-delay-image-loads:                 Inlined images.
  662. * w3-delay-mpeg-loads:                  Inlined images.
  663. * w3-delimit-emphasis <1>:              Character based terminals.
  664. * w3-delimit-emphasis:                  Basic Setup.
  665. * w3-delimit-links <1>:                 Basic Setup.
  666. * w3-delimit-links:                     General Formatting.
  667. * w3-emacs19-hack-faces-p:              Smart terminals.
  668. * w3-gopher-labels:                     General Formatting.
  669. * w3-graphic-converter-alist:           Inlined images.
  670. * w3-header-chars-assoc:                Character based terminals.
  671. * w3-horizontal-rule-char:              General Formatting.
  672. * w3-hotlist-file <1>:                  Basic Setup.
  673. * w3-hotlist-file:                      Hotlist Handling.
  674. * w3-html-entities:                     Miscellaneous Functions.
  675. * w3-html2latex-args:                   Miscellaneous.
  676. * w3-html2latex-prog:                   Miscellaneous.
  677. * w3-icon-directory-list:               Other Variables.
  678. * w3-indent-level:                      General Formatting.
  679. * w3-keep-history:                      Action.
  680. * w3-keep-old-buffers:                  Other Variables.
  681. * w3-latex-docstyle:                    Miscellaneous.
  682. * w3-link-end-delimiter:                General Formatting.
  683. * w3-link-start-delimiter:              General Formatting.
  684. * w3-list-chars-assoc:                  General Formatting.
  685. * w3-load-hooks:                        Hooks.
  686. * w3-mpeg-args:                         Inlined images.
  687. * w3-mpeg-program:                      Inlined images.
  688. * w3-personal-annotation-directory <1>: Basic Setup.
  689. * w3-personal-annotation-directory:     Personal Annotations.
  690. * w3-print-commnad:                     Miscellaneous.
  691. * w3-reuse-buffers:                     Other Variables.
  692. * w3-right-border <1>:                  General Formatting.
  693. * w3-right-border:                      Basic Setup.
  694. * w3-running-epoch:                     Global Variables.
  695. * w3-running-FSF19:                     Global Variables.
  696. * w3-running-xemacs:                    Global Variables.
  697. * w3-show-headers:                      Other Variables.
  698. * w3-show-status:                       Other Variables.
  699. * w3-style-chars-assoc <1>:             Basic Setup.
  700. * w3-style-chars-assoc:                 Character based terminals.
  701. * w3-track-mouse:                       Basic Setup.
  702. * w3-use-forms-index:                   Basic Setup.
  703. * w3-use-html2latex:                    Miscellaneous.
  704. * w3-use-hypertext-gopher:              General Formatting.
  705.  
  706.  
  707.